home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / zlib.mak < prev    next >
Text File  |  1996-09-17  |  3KB  |  104 lines

  1. #    Copyright (C) 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2. # This file is part of Aladdin Ghostscript.
  3. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. # or distributor accepts any responsibility for the consequences of using it,
  5. # or for whether it serves any particular purpose or works at all, unless he
  6. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. # License (the "License") for full details.
  8. # Every copy of Aladdin Ghostscript must include a copy of the License,
  9. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. # under certain conditions described in the License.  Among other things, the
  12. # License requires that the copyright notice and this notice be preserved on
  13. # all copies.
  14.  
  15. # makefile for zlib library code.
  16.  
  17. # This partial makefile compiles the zlib library for use in Ghostscript.
  18. # You can get the source code for this library from:
  19. #   ftp://ftp.uu.net/pub/archiving/zip/zlib102.zip   (zlib 1.0.2)
  20. #        or zlib-1.0.2.tar.gz
  21. # Please see Ghostscript's `make.txt' file for instructions about how to
  22. # unpack these archives.
  23.  
  24. # Define the name of this makefile.
  25. ZLIB_MAK=zlib.mak
  26.  
  27. # ZSRCDIR is defined in the platform-specific makefile, not here,
  28. # as the directory where the zlib sources are stored.
  29. #ZSRCDIR=zlib
  30. ZSRC=$(ZSRCDIR)$(D)
  31. CCCZ=$(CCC) -I$(ZSRCDIR)
  32.  
  33. # We keep all of the zlib code in a separate directory so as not to
  34. # inadvertently mix it up with Aladdin Enterprises' own code.
  35. ZDEP=$(AK)
  36.  
  37. # Code common to compression and decompression.
  38.  
  39. zlibc_=zutil.$(OBJ)
  40. zlibc.dev: $(ZLIB_MAK) $(ECHOGS_XE) $(zlibc_)
  41.     $(SETMOD) zlibc $(zlibc_)
  42.  
  43. zutil.$(OBJ): $(ZSRC)zutil.c $(ZDEP)
  44.     $(CCCZ) $(ZSRC)zutil.c
  45.  
  46. # Encoding (compression) code.
  47.  
  48. zlibe.dev: $(MAKEFILE) zlibe_$(SHARE_ZLIB).dev
  49.     $(CP_) zlibe_$(SHARE_ZLIB).dev zlibe.dev
  50.  
  51. zlibe_1.dev: $(ZLIB_MAK) $(ECHOGS_XE)
  52.     $(SETMOD) zlibe_1 -lib gz
  53.  
  54. zlibe_=adler32.$(OBJ) deflate.$(OBJ) trees.$(OBJ)
  55. zlibe_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) zlibc.dev $(zlibe_)
  56.     $(SETMOD) zlibe_0 $(zlibe_)
  57.     $(ADDMOD) zlibe_0 -include zlibc
  58.  
  59. adler32.$(OBJ): $(ZSRC)adler32.c $(ZDEP)
  60.     $(CCCZ) $(ZSRC)adler32.c
  61.  
  62. deflate.$(OBJ): $(ZSRC)deflate.c $(ZDEP)
  63.     $(CCCZ) $(ZSRC)deflate.c
  64.  
  65. trees.$(OBJ): $(ZSRC)trees.c $(ZDEP)
  66.     $(CCCZ) $(ZSRC)trees.c
  67.  
  68. # Decoding (decompression) code.
  69.  
  70. zlibd.dev: $(MAKEFILE) zlibd_$(SHARE_ZLIB).dev
  71.     $(CP_) zlibd_$(SHARE_ZLIB).dev zlibd.dev
  72.  
  73. zlibd_1.dev: $(ZLIB_MAK) $(ECHOGS_XE)
  74.     $(SETMOD) zlibd_1 -lib gz
  75.  
  76. zlibd1_=infblock.$(OBJ) infcodes.$(OBJ) inffast.$(OBJ)
  77. zlibd2_=inflate.$(OBJ) inftrees.$(OBJ) infutil.$(OBJ)
  78. zlibd_ = $(zlibd1_) $(zlibd2_)
  79. zlibd_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) zlibc.dev $(zlibd_)
  80.     $(SETMOD) zlibd_0 $(zlibd1_)
  81.     $(ADDMOD) zlibd_0 -obj $(zlibd2_)
  82.     $(ADDMOD) zlibd_0 -include zlibc
  83.  
  84. infblock.$(OBJ): $(ZSRC)infblock.c $(ZDEP)
  85.     $(CCCZ) $(ZSRC)infblock.c
  86.  
  87. infcodes.$(OBJ): $(ZSRC)infcodes.c $(ZDEP)
  88.     $(CCCZ) $(ZSRC)infcodes.c
  89.  
  90. inffast.$(OBJ): $(ZSRC)inffast.c $(ZDEP)
  91.     $(CCCZ) $(ZSRC)inffast.c
  92.  
  93. inflate.$(OBJ): $(ZSRC)inflate.c $(ZDEP)
  94.     $(CCCZ) $(ZSRC)inflate.c
  95.  
  96. inftrees.$(OBJ): $(ZSRC)inftrees.c $(ZDEP)
  97.     $(CCCZ) $(ZSRC)inftrees.c
  98.  
  99. infutil.$(OBJ): $(ZSRC)infutil.c $(ZDEP)
  100.     $(CCCZ) $(ZSRC)infutil.c
  101.